Google News
logo
jQuery - Interview Questions
What is jQuery.noConflict?
Usually, JS functions and variables use $ as a name. In jQuery, $ is just an alias for jQuery, so we don’t need to use $. If we have to use a JS library along with jQuery, the control of $ is given to the JS library. To give this control, we use jQuery.noConflict(). It is also used to assign a new name to a variable.
 
var newname = jQuery.noConflict();
Advertisement